home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2007 December
/
PCWKCD1207B.iso
/
Windows marzen
/
Macro ToolsWorks 6.31
/
tworks.exe
/
Samples
/
Detects if notepad.exe is running and kills it on users request.mcr
< prev
next >
Wrap
Text File
|
2003-06-11
|
376b
|
14 lines
<#>
<#> Sample: Detects if notepad.exe is running and kills it on users request.
<#>
<cmds>
<if_process>(notepad.exe,EXIST)
<msg>(-100,-100,"Notepad.exe is running. Do you want to kill it?","Message",2)
<if_str>("_vMsgButton==YES")
<process_kill>(notepad.exe)
<endif>
<else>
<msg>(-100,-100,"Notepad.exe is not running.","Message",1)
<endif>